home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / slocate.prerm < prev    next >
Encoding:
Text File  |  2007-02-21  |  124 b   |  12 lines

  1. #!/bin/sh
  2.  
  3. DBPATH=/var/lib/slocate/
  4. SLOCATE=/usr/bin/slocate
  5.  
  6. if [ "$1" = remove -a -d $DBPATH ]
  7. then
  8.     rm -f $DBPATH/*
  9. fi
  10.  
  11.  
  12.